home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / linux / tools / gas-2.2.changes < prev    next >
Encoding:
Text File  |  1994-06-14  |  1.5 KB  |  53 lines

  1. --- gas-2.2/gas/config/tc-m68k.h    Sun Oct 31 01:36:00 1993
  2. +++ gas-2.2.new/gas/config/tc-m68k.h    Tue Nov 16 09:59:18 1993
  3. @@ -21,7 +21,11 @@
  4.  #define TC_M68K 1
  5.  
  6.  #ifdef OBJ_AOUT
  7. +#ifdef TE_LINUX
  8. +#define TARGET_FORMAT "a.out-m68k-linux"
  9. +#else
  10.  #define TARGET_FORMAT "a.out-sunos-big"
  11. +#endif
  12.  #endif
  13.  
  14.  #ifdef TE_LYNX
  15. --- gas-2.2/gas/config/te-linux.h    Wed May  5 08:40:57 1993
  16. +++ gas-2.2.new/gas/config/te-linux.h    Tue Nov 16 09:58:55 1993
  17. @@ -1,2 +1,4 @@
  18. -#define TE_LINUX
  19. +#define TE_LINUX 1
  20. +#define LOCAL_LABELS_DOLLAR
  21. +#define LOCAL_LABELS_FB
  22.  #include "obj-format.h"
  23. --- gas-2.2/gas/configure.in    Fri Nov  5 14:18:38 1993
  24. +++ gas-2.2.new/gas/configure.in    Mon Nov 15 08:54:51 1993
  25. @@ -155,6 +155,7 @@
  26.  
  27.    m68k-wrs-vxworks | m68k-ericsson-ose | m68k-*-sunos*)
  28.              obj_format=aout emulation=sun3 ;;
  29. +  m68k-*-linux*)    obj_format=aout emulation=linux ;;
  30.    m68k-*-coff | m68k-*-sysv*)
  31.              obj_format=coffbfd gas_target=m68kcoff ;;
  32.    m68k-*-hpux)        obj_format=hp300 emulation=hp300 ;;
  33.  
  34. *** gas-2.2/gas/read.c    Sun Apr 17 16:29:14 1994
  35. --- gas-2.2.new/gas/read.c    Sun Apr 17 16:28:39 1994
  36. ***************
  37. *** 644,650 ****
  38.               num = buffer_limit - buffer;
  39.   
  40.                 tmp_buf = xrealloc (tmp_buf, tmp_len + num);
  41. !               memcpy (tmp_buf, buffer + tmp_len, num);
  42.                 tmp_len += num;
  43.               }
  44.             while (!ends);
  45. --- 644,650 ----
  46.               num = buffer_limit - buffer;
  47.   
  48.                 tmp_buf = xrealloc (tmp_buf, tmp_len + num);
  49. !               memcpy (tmp_buf + tmp_len, buffer, num);
  50.                 tmp_len += num;
  51.               }
  52.             while (!ends);
  53.